home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 37
/
Aminet 37 (2000)(Schatztruhe)[!][Jun 2000].iso
/
Aminet
/
dev
/
c
/
PMM.lha
/
PMM
/
Developer
/
src
/
AutoLib
/
GateXprBase.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
2000-01-25
|
326 b
|
18 lines
#include <exec/libraries.h>
#include <proto/exec.h>
struct Library *GateXprBase = NULL;
extern unsigned long _GateXprBaseVer;
void _INIT_5_GateXprBase()
{
if (!(GateXprBase = OpenLibrary("GateXpr.library",_GateXprBaseVer)))
exit(20);
}
void _EXIT_5_GateXprBase()
{
if (GateXprBase)
CloseLibrary(GateXprBase);
}